home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / hydracom.lha / source / amiga.h < prev    next >
C/C++ Source or Header  |  1994-12-22  |  697b  |  27 lines

  1. /*
  2. **    Amiga support module for HYDRA protocol sample implementation.
  3. **
  4. **    Written by    Olaf Barthel
  5. **            Brabeckstrasse 35
  6. **            D-30559 Hannover
  7. **
  8. **            eMail: olsen@sourcery.han.de
  9. **
  10. **    Freely distributable.
  11. */
  12.  
  13. #include <exec/libraries.h>
  14.  
  15. extern struct IOStdReq    *FileRequest,
  16.             *RemoteRequest,
  17.             *LocalRequest,
  18.             *LogRequest;
  19.  
  20. extern VOID __stdargs     ConPrintf(struct IOStdReq *,STRPTR,...);
  21. extern VOID __stdargs     ConPutc(struct IOStdReq *Request,UBYTE Char);
  22. VOID             ConPuts(struct IOStdReq *Request,STRPTR String);
  23. extern VOID         ConMove(struct IOStdReq *Request,LONG x,LONG y);
  24. extern VOID         ConClear(struct IOStdReq *Request);
  25. extern int         ConGetKey(VOID);
  26. extern int         ConScanKey(VOID);
  27.